DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomVolume Class / DicomVolume Constructor / DicomVolume Constructor(IEnumerable<DicomImage>)
The set of images to derive the DicomVolume from






In This Topic
    DicomVolume Constructor(IEnumerable<DicomImage>)
    In This Topic
    Constructs a DicomVolume from a set of individual slices
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal Images As System.Collections.Generic.IEnumerable(Of DicomImage) _
    )
    'Usage
     
    
    Dim Images As System.Collections.Generic.IEnumerable(Of DicomImage)
     
    Dim instance As New DicomVolume(Images)
    public DicomVolume( 
       System.Collections.Generic.IEnumerable<DicomImage> Images
    )
    public DicomVolume( 
        Images: System.Collections.Generic.IEnumerable
    ); 
    public function DicomVolume( 
       Images : System.Collections.Generic.IEnumerable
    );
    public: DicomVolume( 
       System.Collections.Generic.IEnumerable<DicomImage*>* Images
    )
    public:
    DicomVolume( 
       System.Collections.Generic.IEnumerable<DicomImage^>^ Images
    )

    Parameters

    Images
    The set of images to derive the DicomVolume from
    Remarks

    The individual slices, which must be the same size, orientation, bit depth etc. and must be evenly spaced (though not necessarily in order, as they will be sorted internally).

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also